Skip to content

fix(deps): update dependency fumadocs-core to ^15.4.2 #679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fumadocs-core (source) ^15.0.11 -> ^15.4.2 age adoption passing confidence

Release Notes

fuma-nama/fumadocs (fumadocs-core)

v15.4.2

Compare Source

Patch Changes
  • 0ab6c7f: Improve performance by using shallow compare on useOnChange by default

v15.4.1

Compare Source

v15.4.0

Compare Source

Minor Changes
  • 961b67e: Bump algolia search to v5

    This also introduced changes to some APIs since algoliasearch v4 and v5 has many differences.

    Now we highly recommend to pass an index name to sync():

    import { algoliasearch } from 'algoliasearch';
    import { sync } from 'fumadocs-core/search/algolia';
    const client = algoliasearch('id', 'key');
    
    void sync(client, {
      indexName: 'document',
      documents: records,
    });

    For search client, pass them to searchOptions:

    'use client';
    
    import { liteClient } from 'algoliasearch/lite';
    import type { SharedProps } from 'fumadocs-ui/components/dialog/search';
    import SearchDialog from 'fumadocs-ui/components/dialog/search-algolia';
    
    const client = liteClient(appId, apiKey);
    
    export default function CustomSearchDialog(props: SharedProps) {
      return (
        <SearchDialog
          searchOptions={{
            client,
            indexName: 'document',
          }}
          {...props}
          showAlgolia
        />
      );
    }
Patch Changes
  • 1b999eb: Introduce <Markdown /> component
  • 7d78bc5: Improve createRelativeLink and getPageByHref for i18n usage

v15.3.4

Compare Source

v15.3.3

Compare Source

Patch Changes
  • 4ae7b4a: Support MDX in codeblock tab value

v15.3.2

Compare Source

Patch Changes
  • c25d678: Support Shiki focus notation transformer by default

v15.3.1

Compare Source

Patch Changes
  • 3372792: Support line numbers in codeblock

v15.3.0

Compare Source

Patch Changes
  • c05dc03: Improve error message of remark image

v15.2.15

Compare Source

Patch Changes
  • 50db874: Remove placeholder space for codeblocks
  • 79e75c3: Improve default MDX attribute indexing strategy for remarkStructure

v15.2.14

Compare Source

Patch Changes
  • 6ea1718: Fix type inference for pageTree.attachFile in loader()

v15.2.13

Compare Source

v15.2.12

Compare Source

Patch Changes
  • acff667: Deprecate createFromSource(source, pageToIndex, options)

    Migrate:

    import { source } from '@&#8203;/lib/source';
    import { createFromSource } from 'fumadocs-core/search/server';
    
    // from
    export const { GET } = createFromSource(
      source,
      (page) => ({
        title: page.data.title,
        description: page.data.description,
        url: page.url,
        id: page.url,
        structuredData: page.data.structuredData,
        // use your desired value, like page.slugs[0]
        tag: '<value>',
      }),
      {
        // options
      },
    );
    
    // to
    export const { GET } = createFromSource(source, {
      buildIndex(page) {
        return {
          title: page.data.title,
          description: page.data.description,
          url: page.url,
          id: page.url,
          structuredData: page.data.structuredData,
          // use your desired value, like page.slugs[0]
          tag: '<value>',
        };
      },
      // other options
    });

v15.2.11

Compare Source

Patch Changes
  • 07cd690: Support separators without name

v15.2.10

Compare Source

v15.2.9

Compare Source

v15.2.8

Compare Source

v15.2.7

Compare Source

Patch Changes
  • ec85a6c: support more options on remarkStructure
  • e1a61bf: Support remarkSteps plugin

v15.2.6

Compare Source

Patch Changes
  • d49f9ae: Fix order of <I18nProvider />
  • b07e98c: fix loader().getNodePage() returning undefined for other locales
  • 3a4bd88: Fix wrong index files output in i18n page tree generation

v15.2.5

Compare Source

Patch Changes
  • c66ed79: Fix removeScrollOn on sidebar primitive

v15.2.4

Compare Source

Patch Changes
  • 1057957: Fix type problems on dynamic codeblock

v15.2.3

Compare Source

v15.2.2

Compare Source

Patch Changes
  • 0829544: deprecate blockScrollingWidth in favour of removeScrollOn

v15.2.1

Compare Source

v15.2.0

Compare Source

Minor Changes
  • 2fd325c: Enable lazy on rehypeCode by default
  • a7cf4fa: Support other frameworks via FrameworkProvider

v15.1.3

Compare Source

Patch Changes
  • b734f92: support mdxJsxFlowElement in remarkStructure

v15.1.2

Compare Source

Patch Changes
  • 3f580c4: Support directory-based i18n routing

v15.1.1

Compare Source

Patch Changes
  • c5add28: use internal store for Shiki highlighter instances
  • f3cde4f: Support markdown files with default local code in file name
  • 7c8a690: Improve file info interface
  • b812457: Remove Next.js usage from search server

v15.1.0

Compare Source

Minor Changes
  • f491f6f: Lazy build page tree by default
  • f491f6f: Support getPageByHref() on loader API
Patch Changes
  • f491f6f: Fix findNeighbour() doesn't exclude other nodes of another root

v15.0.18

Compare Source

v15.0.17

Compare Source

Patch Changes
  • 72f79cf: Support Orama Cloud crawler index

v15.0.16

Compare Source

v15.0.15

Compare Source

Patch Changes
  • 9f6d39a: Fix peer deps
  • 2035cb1: remove hook-level cache from useDocsSearch()

v15.0.14

Compare Source

Patch Changes
  • 37dc0a6: Update image-size to v2
  • 796cc5e: Upgrade to Orama v3
  • 2cc0be5: Support to add custom serialization to remarkStructure via data._string

v15.0.13

Compare Source

v15.0.12

Compare Source

Patch Changes
  • 3534a10: Move fumadocs-core highlighting utils to fumadocs-core/highlight and fumadocs-core/highlight/client
  • 93952db: Generate a $id attribute to page tree nodes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Mar 28, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ui-www ❌ Failed (Inspect) May 31, 2025 9:05am

@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from cbbd187 to 2bfd291 Compare March 28, 2025 19:12
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2bfd291 to 9f1acb3 Compare March 28, 2025 21:53
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 9f1acb3 to 58059ee Compare March 29, 2025 01:40
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 58059ee to 6a52772 Compare March 29, 2025 05:35
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 6a52772 to e4d2793 Compare March 29, 2025 10:07
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.1.3 fix(deps): update dependency fumadocs-core to ^15.2.0 Mar 29, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from e4d2793 to 9625a88 Compare March 30, 2025 09:52
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.2.0 fix(deps): update dependency fumadocs-core to ^15.2.1 Mar 30, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 9625a88 to 9a1249a Compare March 30, 2025 17:49
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 9a1249a to 5e8bfc0 Compare March 30, 2025 21:29
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 5e8bfc0 to d8d6dd4 Compare March 31, 2025 20:15
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from d8d6dd4 to b716a1c Compare March 31, 2025 22:50
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from b716a1c to 1c62116 Compare April 1, 2025 03:12
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 1c62116 to 1d0363d Compare April 1, 2025 07:04
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 1d0363d to d396fb0 Compare April 1, 2025 16:59
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from c715586 to 1a41585 Compare May 29, 2025 03:02
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 1a41585 to 978d52f Compare May 29, 2025 05:30
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 978d52f to 937edd4 Compare May 29, 2025 11:25
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 937edd4 to 348a672 Compare May 29, 2025 13:28
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 348a672 to 940df82 Compare May 29, 2025 17:18
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 940df82 to 2721a28 Compare May 29, 2025 21:14
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2721a28 to 0699e19 Compare May 30, 2025 03:16
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 0699e19 to 68b07f6 Compare May 30, 2025 04:56
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 68b07f6 to 1ea1855 Compare May 30, 2025 15:07
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 1ea1855 to c3efcaa Compare May 30, 2025 19:34
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from c3efcaa to 584de8e Compare May 30, 2025 23:00
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 584de8e to 2e0ee10 Compare May 31, 2025 01:10
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2e0ee10 to 528f310 Compare May 31, 2025 05:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants